* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
html, body {
overflow-x: hidden;
} 
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
body {
background: #000;
color: #fff;
}

/* MOBILE TOGGLE BUTTON */
.mobile-navbar {
display: none;
justify-content: space-between;
align-items: center;
padding: 31px;
background: #000;
color: #fff;
position: relative;
z-index: 3000;
}
.mobile-logo {
font-size: 1.7rem;
font-weight: bold;
}
.mobile-toggle {
width: 28px;
height: 22px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.mobile-toggle span {
display: block;
height: 3px;
width: 100%;
background: #fff;
border-radius: 2px;
transition: all 0.4s ease;
}
.mobile-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background: #000;
flex-direction: column;
justify-content: flex-start;
padding: 100px 20px;
z-index: 2000;
}
.mobile-menu.show {
display: flex;
}
.mobile-nav-links a {
display: block;
color: #fff;
text-decoration: none;
font-size: 20px;
margin-bottom: 20px;
transition: opacity 0.2s ease;
}
.mobile-nav-links a:hover {
opacity: 0.8;
}
@media (max-width: 900px) {
.main-navbar,
.top-bar {
display: none;
}
.mobile-navbar {
display: flex;
}
}

/* ===== HEADER WRAPPER ===== */
.header-wrapper {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: transparent;
transition: background 0.35s ease;
}
.header-wrapper:hover {
background: rgba(0, 0, 0, 0.9);
}

/* ===== TOP BAR ===== */
.top-bar {
height: 40px;
overflow: hidden;
transition: height 0.4s ease;
}
.top-bar-inner {
max-width: 1300px;
margin: auto;
height: 40px;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 25px;
padding: 0 30px;
}
.top-bar a {
font-size: 15px;
color: #fff;
text-decoration: none;
opacity: 0.85;
}

/* ===== NAVBAR ===== */
.main-navbar {
transition: padding 0.4s ease;
}
.navbar-inner {
max-width: 1300px;
margin: auto;
padding: 20px 30px;
display: flex;
align-items: center;
}
.nav-left {
display: flex;
align-items: center;
gap: 50px; 
}
.logo-img {
height: 42px;
width: 130px;
display: block;
}
.nav-links {
display: flex;
gap: 37px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
.nav-links a,
.top-bar a {
position: relative;
}

/* ===== UNDERLINE HOVER ONLY FOR TOP BAR & MAIN NAV ===== */
.top-bar a::after,
.nav-links > .nav-item > a::after {
content: "";
position: absolute;
left: 50%;
bottom: -5px;
width: 0;
height: 2px;
background: #fff;
transform: translateX(-50%);
transition: width 0.3s ease;
}
.top-bar a:hover::after,
.nav-links > .nav-item > a:hover::after {
width: 100%;
}
.mega-right a {
text-decoration: none;
}
.mega-right a:hover {
opacity: 1;
}
.mega-right a{
position: relative;
display: block;
padding-left: 18px;
color: #fff;
text-decoration: none;
font-size: 16px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.mega-right a::before{
content: "";
position: absolute;
left: 0;
top: 50%;
width: 3px;
height: 0;
background: #fff;
transform: translateY(-50%);
transition: height 0.3s ease;
}
.mega-right a:hover {
opacity: 1;
transform: translateX(6px);
}
.mega-right a:hover::before {
height: 70%;
}


/* ===== SCROLL STATE (CAPGEMINI STYLE) ===== */
.header-wrapper.scrolled {
background: #020617;
}
.header-wrapper.scrolled .top-bar {
height: 0;
}
.header-wrapper.scrolled .navbar-inner {
padding: 20px 40px;
}
.header-wrapper.scrolled .logo {
font-size: 26px;
font-weight: 600;
}
.header-wrapper.scrolled .nav-links {
display: flex;
gap: 37px;
color: #fff;
text-decoration: none;
font-size: 15px;
}
.header-wrapper.scrolled .nav-left {
display: flex;
align-items: center;
gap: 50px; 
}



/* ===== MEGA MENU BASE ===== */
.main-navbar {
position: relative;
}
.mega-menu {
position: absolute;
left: 0;
top: 100%;
width: 100vw;
min-height: 300px;
display: flex;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.35s ease;
z-index: 999;
}
.nav-item.mega:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
/* LEFT PANEL */
.mega-left {
width: 29%;
padding: 60px;
background: radial-gradient(
circle at top left,
rgb(138, 92, 246),
rgb(6, 181, 212) 40%,
rgb(59, 131, 246) 100%,
transparent 100%
);
}
.mega-left h4 {
font-size: 22px;
margin-bottom: 15px;
}
.mega-left p {
font-size: 14px;
opacity: 0.85;
margin-bottom: 25px;
}
.mega-btn {
display: inline-block;
padding: 10px 22px;
border: 1px solid #fff;
border-radius: 30px;
text-decoration: none;
color: #fff;
font-size: 14px;
}
.mega-btn:hover {
background-color: white;
color: black;
}
.mega-right {
width: 71%;
padding: 40px;
background: #020617;
}
.mega-right a {
display: block;
color: #fff;
text-decoration: none;
font-size: 16px;
margin-bottom: 14px;
opacity: 0.85;
}
.mega-right a:hover {
opacity: 1;
}

/* ===== ABOUT US MEGA MENU ===== */
.about-menu {
min-height: 300px;
}
.about-rights a {
position: relative;
display: block;
padding-left: 18px;
color: #fff;
text-decoration: none;
font-size: 16px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.about-rights a::before {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 3px;
height: 0;
background: #fff;
transform: translateY(-50%);
transition: height 0.3s ease;
}
.about-rights a:hover {
opacity: 1;
transform: translateX(6px);
}
.about-rights a:hover::before {
height: 70%;
}






.hero {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
background: #000000; 
} 
.hero-video {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
object-fit: cover;
transform: translate(-50%, -50%);
z-index: 0;
filter: contrast(1.05) saturate(1.1) brightness(0.9);
}
.hero-overlay{
position:absolute;
inset:0;
z-index:1;

background:

/* Glow accent */
radial-gradient(
circle at right center,
rgba(31, 41, 55, 0.85) 0%,
rgba(17, 24, 39, 0.6) 30%,
rgba(15, 23, 42, 0.35) 50%,
transparent 70%
),

/* Main dark gradient */
linear-gradient(
90deg,
#020617 0%,
rgba(2,6,23,0.95) 20%,
rgba(15,23,42,0.85) 40%,
rgba(17,24,39,0.7) 60%,
rgba(31,41,55,0.4) 80%,
transparent 100%
);

}
.hero-content {
position: relative;
z-index: 2;
height: 100%;
max-width: 1240px;
margin: auto;
padding: 180px 50px;
display: flex;
align-items: center;
}
.hero-left {
max-width: 620px;
}
.hero-left h1 {
font-family: 'Ubuntu Mono', monospace;
font-size: clamp(2.9rem, 5vw, 4.5rem);
font-weight: 700;
line-height: 1.15;
margin-bottom: 20px;
margin-top: 50px;
}
.hero-left p {
font-size: 1.15rem;
opacity: 0.9;
max-width: 520px;
line-height: 1.7;
}
.hero-actions {
display: flex;
gap: 18px;
flex-wrap: wrap;
margin-top: 30px;
}
.btn-primary {
padding: 14px 34px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #fff;
background: #3B82F6;
border-radius: 999px;
text-decoration: none;
border: 1px solid rgba(255,255,255,0.15);
box-shadow:
0 5px 90px rgba(59, 130, 246, 0.6);
transition: all 0.35s ease;
}
.btn-secondary {
padding: 14px 34px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #fff;
text-decoration: none;
border-radius: 999px;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.35);
transition: all 0.35s ease;
box-shadow:
0 5px 90px rgba(59, 130, 246, 0.6);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow:
0 14px 40px rgba(59,130,246,0.7),
0 0 25px rgba(6,182,212,0.6),
0 0 60px rgba(139,92,246,0.5);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #1b3bcae1;
box-shadow:
0 14px 40px rgba(59,130,246,0.7),
0 0 25px rgba(6,182,212,0.6),
0 0 60px rgba(139,92,246,0.5);
}
@media (max-width: 1024px) {
.hero-content {
padding: 140px 40px;
}
.hero-left {
max-width: 560px;
}
}
@media (max-width: 768px) {
.hero {
height: 85vh;
}
.hero-video {
filter: contrast(1.05) saturate(1.05) brightness(0.85);
}
.hero-overlay {
background:
linear-gradient(
180deg,
rgba(0, 0, 0, 0.96) 0%,
rgba(6, 3, 18, 0.92) 45%,
rgba(6, 3, 18, 0.75) 70%,
rgba(6, 3, 18, 0.45) 100%
);
}
.hero-content {
padding: 120px 24px 60px;
align-items: flex-start;
}
.hero-left {
max-width: 100%;
}
.hero-left h1 {
font-size: clamp(2.2rem, 7vw, 2.8rem);
margin-top: 0;
line-height: 1.2;
}
.hero-left p {
font-size: 1.05rem;
max-width: 100%;
line-height: 1.6;
}
.hero-actions {
margin-top: 24px;
flex-direction: column;
gap: 14px;
}
.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
padding: 13px 0;
font-size: 13px;
}
}

@media (max-width: 480px) {
.hero {
height: 60vh;
}
.hero-content {
padding: 100px 20px 50px;
}
.hero-left h1 {
font-size: 2rem;
}
.hero-left p {
font-size: 0.95rem;
}
}
/* 3D POLYGON HOLDER */
.hero-3d {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 100;
pointer-events: none;
filter:
drop-shadow(0 0 40px rgba(59,130,246,0.5))
drop-shadow(0 0 80px rgba(6,182,212,0.6));
}
#polygonCanvas {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .hero-3d {
    display: none;
  }
}









/* ===============================
SERVICE HERO BASE
================================ */
.service-hero {
position: relative;
background: #0F172A;
padding: 120px 80px;
color: #fff;
font-family: 'Ubuntu Mono', monospace;
overflow: hidden;
}
.service-poly {
position: absolute;
z-index: 1;
pointer-events: none;
opacity: 0.45;
}
.poly-one {
top: -180px;
left: -180px;
width: 480px;
height: 480px;
background: radial-gradient(circle at top left, #010519, #07295f 80%);
clip-path: polygon(
50% 0%, 90% 20%, 100% 60%,
75% 100%, 25% 100%, 0% 60%, 10% 20%
);
}
.poly-two {
bottom: -200px;
right: -200px;
width: 420px;
height: 420px;
background: radial-gradient(circle at top left, #010519, #07295f 80%);
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
}
.service-symbol {
position: absolute;
z-index: 2;
background: radial-gradient(circle at top left, #010519, #07295f 80%);
border: 1.5px solid rgba(138,43,226,0.75);
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
box-shadow:
0 0 30px rgba(138,43,226,0.45),
inset 0 0 16px rgba(138,43,226,0.3);
}
.symbol-one {
width: 140px;
height: 140px;
top: 140px;
right: 200px;
}
.symbol-two {
width: 120px;
height: 120px;
bottom: 240px;
left: 240px;
}
.symbol-three {
width: 100px;
height: 100px;
top: 360px;
right: 460px;
opacity: 0.7;
}
.symbol-four {
width: 80px;
height: 80px;
bottom: 160px;
right: 560px;
opacity: 0.55;
}
.symbol-outline {
width: 170px;
height: 170px;
top: 220px;
left: 520px;
background: transparent;
border: 2px solid rgba(138,43,226,0.45);
box-shadow: none;
opacity: 0.6;
}
.symbol-blur {
width: 220px;
height: 220px;
bottom: -60px;
right: 140px;
background: radial-gradient(circle,  rgba(59, 130, 246, 0.6), transparent 70%);
filter: blur(35px);
border: none;
opacity: 0.6;
}
.service-content {
position: relative;
z-index: 5;
max-width: 1200px;
}
.service-tag {
display: inline-block;
margin-bottom: 14px;
font-size: 13px;
letter-spacing: 1.6px;
text-transform: uppercase;
color: #fefefed4;
}
.service-content h1 {
font-family: 'Ubuntu Mono', monospace;
font-size: 3.3rem;
margin-bottom: 1.4rem;
}
.service-intro {
font-size: 1.15rem;
color: #cfcfcf;
max-width: 960px;
line-height: 1.8;
margin-bottom: 3rem;
}
.service-text p {
font-size: 1rem;
color: #ddd;
line-height: 1.9;
margin-bottom: 1.6rem;
max-width: 1220px;
}
.service-highlights {
margin-top: 4.8rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.4rem;
}
.highlight-box {
background: radial-gradient(circle at top left, #010519, #1766e6 80%);
padding: 3rem;
min-height: 240px;
box-shadow:
inset 0 0 0 3px rgba(255, 255, 255, 0.208),
0 40px 100px rgba(0,0,0,0.9);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.highlight-box:hover {
box-shadow:
inset 0 0 0 3px rgba(255, 255, 255, 0.208),
0 40px 100px rgba(0,0,0,0.9);
}
.highlight-box h3 {
color: #ffffff;
font-size: 1.4rem;
margin-bottom: 1.2rem;
}
.highlight-box p {
font-size: 0.95rem;
color: #ddd;
line-height: 1.7;
}
@media (max-width: 1024px) {
.service-hero {
padding: 100px 50px;
}
.service-content h1 {
font-size: 2.7rem;
}
.service-intro {
font-size: 1.05rem;
max-width: 100%;
}
.service-highlights {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.symbol-three,
.symbol-four,
.symbol-outline {
display: none;
}
}
@media (max-width: 768px) {
.service-hero {
padding: 80px 26px;
text-align: center;
}
.service-content {
max-width: 100%;
}
.service-tag {
font-size: 12px;
margin-bottom: 12px;
}
.service-content h1 {
font-size: 2.2rem;
line-height: 1.3;
text-align: left;
}
.service-intro {
font-size: 0.98rem;
line-height: 1.60;
margin-bottom: 2.4rem;
}
.service-text p {
font-size: 0.95rem;
line-height: 1.7;
text-align: justify !important;
}
.service-highlights {
grid-template-columns: 1fr;
margin-top: 3.2rem;
}
.highlight-box {
padding: 2.4rem;
min-height: auto;
}
.highlight-box h3 {
font-size: 1.25rem;
}
.highlight-box p {
font-size: 0.9rem;
text-align: justify !important;
}
.poly-one,
.poly-two {
opacity: 0.25;
filter: blur(10px);
}
.symbol-one,
.symbol-two {
display: none;
}
}
@media (max-width: 480px) {
.service-hero {
padding: 65px 18px;
}
.service-content h1 {
font-size: 1.85rem;
}
.service-intro {
font-size: 0.9rem;
}
.service-text p {
font-size: 0.88rem;
}
.highlight-box {
padding: 2rem;
}
.highlight-box h3 {
font-size: 1.15rem;
}
}








.a-line {
background: rgba(255,255,255,0.06);
border: 2px solid rgba(255,255,255,0.08);
}


.site-footer {
background: #020617 !important;
color: #fff;
padding: 80px 0 0;
font-family: 'Ubuntu Mono', monospace;
}
.footer-container {
max-width: 1300px;
margin: auto;
padding: 0 40px 60px;
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1fr;
gap: 70px;
}
.footer-col h4 {
font-size: 20px;
margin-bottom: 22px;
font-weight: 600;
}
.footer-col p {
font-size: 15px;
line-height: 1.8;
opacity: 0.85;
margin-bottom: 12px;
max-width: 280px;
}
.footer-col ul {
list-style: none;
padding: 0;
}
.footer-col ul li {
margin-bottom: 10px;
}
.footer-col ul a {
color: #fff;
text-decoration: none;
font-size: 15px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-col ul a:hover {
opacity: 1;
transform: translateX(6px);
}
.follow-title {
margin-top: 30px;
}
.footer-social {
display: flex;
gap: 10px;
margin-top: 10px;
}
.footer-social a  {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 1rem;
margin-right: 10px;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
}
.footer-social a:hover {
background-color: #ffffff;
color: #3B82F6;
transform: scale(1.1);
box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.footer-bottom {
text-align: center;
font-size: 14px;
opacity: 0.6;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul a {
position: relative; 
color: #fff;
text-decoration: none;
font-size: 15px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-col ul a::after {
content: "";
position: absolute;
left: 50%;
bottom: -4px;
width: 0;
height: 2px;
background: #ffffff;
transform: translateX(-50%);
transition: width 0.3s ease;
}
.footer-col ul a:hover {
opacity: 1;
transform: translateX(6px);
}
.footer-col ul a:hover::after {
width: 100%;
}

.site-footer {
position: relative;
overflow: hidden;
background: radial-gradient(circle at top left, #3B82F6, #0b0322 70%);
}
.site-footer::before {
content: "";
position: absolute;
top: -120px;
left: -120px;
width: 420px;
height: 420px;
background: radial-gradient(circle at top left, #3B82F6, #0b0322 70%);
clip-path: polygon(
50% 0%,
90% 20%,
100% 60%,
75% 100%,
25% 100%,
0% 60%,
10% 20%
);
z-index: 0;
}
.site-footer::after {
content: "";
position: absolute;
bottom: -140px;
right: -140px;
width: 360px;
height: 360px;
background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(11,3,34,0.85));
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
z-index: 0;
}
.footer-container,
.footer-bottom {
position: relative;
z-index: 2;
}
.site-footer::before,
.site-footer::after {
filter: blur(1px);
}
@media (max-width: 900px) {
.site-footer {
padding-top: 60px;
}
.footer-container {
grid-template-columns: 1fr 1fr;
gap: 40px;
padding: 0 20px 40px;
}
.footer-col h4 {
font-size: 18px;
margin-bottom: 16px;
}
.footer-col p {
font-size: 14px;
max-width: 100%;
}
.footer-col ul a {
font-size: 14px;
}
.footer-social {
justify-content: flex-start;
}
}
@media (max-width: 600px) {
.footer-container {
grid-template-columns: 1fr;
text-align: left;
gap: 35px;
}
.footer-col p {
margin: 0 auto 12px;
}
.footer-col ul {
display: flex;
flex-direction: column;
align-items: left;
}
.footer-col ul a:hover {
transform: none;
}
.footer-social {
justify-content: left;
}
.footer-social a {
width: 44px;
height: 44px;
font-size: 1.1rem;
}
.footer-bottom {
font-size: 13px;
padding: 16px 10px;
}
}
@media (max-width: 420px) {
.footer-col h4 {
font-size: 17px;
}
.footer-col p,
.footer-col ul a {
font-size: 19px;
}
.footer-social a {
width: 42px;
height: 42px;
}
.site-footer::before,
.site-footer::after {
opacity: 0.4;
transform: scale(0.75);
}
}







/* Container */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start; 
    gap: 12px;
}
.contact-icon {
    color: #3B82F6;
    font-size: 1.2rem;
    margin-top: 1px;
}
.contact-item p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}
.contact-email {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.contact-email:hover {
    color: #3B82F6;
}